home *** CD-ROM | disk | FTP | other *** search
- /****
- * CNDImagePICT.h
- *
- * Persistent PICT image class.
- * Copyright © 1992 NeoLogic Systems. All rights reserved.
- *
- ****/
-
- #pragma once /* Include this file only once */
- #include "CNDImage.h"
-
- #define kNDImagePICTID 23
-
- class CNDImagePICT : public CNDImage {
- public:
- /** Instance Methods **/
- static CNeoPersist *New(void);
- virtual NeoID getClassID(void) const;
-
- /** Rendering Methods **/
- virtual void draw(Rect *aRect);
- };
-
-